home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / gcc / newgccstart.lha / source.lha / stubs / _other.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-14  |  339 b   |  16 lines

  1. #include <exec/lists.h>
  2. #include <exec/nodes.h>
  3.  
  4. extern void __exitio(void); /* Funktion zum Schließen aller Files */
  5.  
  6. static void (*a)(void)=&__exitio;
  7.  
  8. struct MinList __filelist= /* Liste der geöffneten files ohne stdin, stdout, stderr */
  9. {
  10.   (struct MinNode *)&__filelist.mlh_Tail,
  11.   NULL,
  12.   (struct MinNode *)&__filelist.mlh_Head
  13. };
  14.  
  15.  
  16.